:root {
  --royal: #1557d8;
  --navy: #071b3a;
  --ink: #102033;
  --muted: #607086;
  --silver: #d8e0ea;
  --light: #f5f8fc;
  --line: #e2e8f0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}
body.rtl { font-family: "Cairo", "Segoe UI", Arial, sans-serif; }
a { text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 27, 58, .96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.navbar { min-height: 78px; }
.brand-mark { display: inline-flex; align-items: center; gap: 12px; color: #fff; }
.brand-mark small { display: block; color: #b8c6d8; font-size: 12px; }
.brand-logo {
  width: 44px; height: 44px; border-radius: 8px; display: inline-grid; place-items: center;
  background: linear-gradient(135deg, var(--royal), #5cc8ff);
  font-weight: 800; color: #fff; letter-spacing: 0;
}
.nav-link { color: #dce7f5 !important; font-weight: 600; }
.nav-cta, .language-pill {
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  padding-inline: 16px !important;
  margin-inline-start: 6px;
}

.hero-section {
  min-height: 720px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(7,27,58,.94), rgba(12,58,126,.9)),
    url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1800&q=80") center/cover;
}
.hero-orbit {
  position: absolute; inset: auto -120px -220px auto; width: 560px; height: 560px;
  border: 1px solid rgba(255,255,255,.18); border-radius: 50%;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: 60px; align-items: center; }
.eyebrow { color: #5cc8ff; text-transform: uppercase; font-weight: 800; letter-spacing: 0; font-size: 13px; }
h1, h2, h3 { letter-spacing: 0; }
.hero-copy h1 { font-size: clamp(42px, 6vw, 76px); line-height: 1.02; max-width: 900px; margin: 16px 0; font-weight: 800; }
.hero-copy p { max-width: 780px; color: #d8e5f4; font-size: 20px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 34px; }
.btn { border-radius: 8px; font-weight: 700; }
.btn-primary { background: var(--royal); border-color: var(--royal); }
.btn-link-light { color: #fff; }

.enterprise-visual {
  min-height: 420px; position: relative; border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08); border-radius: 8px; padding: 28px; overflow: hidden;
}
.cloud-node {
  position: absolute; display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.92); color: var(--navy); border-radius: 8px;
  padding: 14px 18px; box-shadow: 0 24px 60px rgba(0,0,0,.26); font-weight: 800;
}
.cloud-node i { color: var(--royal); }
.cloud-node.main { top: 42%; left: 28%; transform: scale(1.2); }
.cloud-node:nth-child(2) { top: 16%; left: 10%; }
.cloud-node:nth-child(3) { top: 18%; right: 8%; }
.cloud-node:nth-child(4) { bottom: 16%; right: 18%; }
.visual-line { position: absolute; inset: 90px; border: 1px dashed rgba(255,255,255,.34); border-radius: 50%; animation: spin 28s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.stats-band { background: var(--light); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.stat-card { background: #fff; padding: 30px; text-align: center; }
.stat-card strong { display: block; color: var(--royal); font-size: 38px; }
.stat-card span { color: var(--muted); font-weight: 700; }

.content-section { padding: 88px 0; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading h2, .split-layout h2, .cta-content h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 800; color: var(--navy); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card, .company-card {
  display: block; color: var(--ink); padding: 28px; min-height: 210px;
  border: 1px solid var(--line); border-radius: 8px; background: #fff;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.feature-card:hover, .company-card:hover { transform: translateY(-6px); border-color: #bdd0f6; box-shadow: 0 22px 48px rgba(20, 54, 104, .12); }
.feature-card i { color: var(--royal); font-size: 30px; margin-bottom: 22px; }
.feature-card h3 { font-size: 21px; font-weight: 800; color: var(--navy); }
.feature-card p, .company-card p, .split-layout p { color: var(--muted); line-height: 1.7; }

.group-band { background: linear-gradient(180deg, #f8fbff, #fff); }
.company-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.company-logo {
  width: 62px; height: 62px; border-radius: 8px; display: grid; place-items: center;
  color: #fff; background: var(--navy); font-weight: 800; margin-bottom: 18px;
}
.company-card strong { display: block; color: var(--navy); font-size: 18px; }
.company-card small { color: var(--royal); font-weight: 800; }

.split-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.stack-list { display: grid; gap: 16px; }
.stack-item {
  display: flex; gap: 16px; align-items: flex-start; border: 1px solid var(--line);
  border-radius: 8px; padding: 18px; background: #fff;
}
.stack-item i { color: var(--royal); margin-top: 4px; }
.stack-item strong, .stack-item span { display: block; }
.stack-item span { color: var(--muted); }

.cta-band { padding: 72px 0; background: var(--navy); color: #fff; }
.cta-content { display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.cta-content h2 { color: #fff; max-width: 760px; }

.page-hero { padding: 110px 0 70px; background: var(--navy); color: #fff; }
.page-hero.compact { padding: 82px 0 52px; }
.page-hero h1 { font-size: clamp(38px, 5vw, 64px); font-weight: 800; }
.page-hero p { color: #d8e5f4; max-width: 760px; font-size: 19px; }
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 34px; }
.contact-form, .contact-panel { border: 1px solid var(--line); border-radius: 8px; padding: 30px; background: #fff; }
.contact-form { display: grid; gap: 16px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 8px; padding: 14px 16px; font: inherit;
}
.contact-panel a { display: block; color: var(--navy); margin: 14px 0; font-weight: 700; }
.map-placeholder { margin-top: 24px; min-height: 180px; border-radius: 8px; display: grid; place-items: center; background: var(--light); color: var(--muted); }

.site-footer { background: #06152d; color: #c8d5e6; padding: 54px 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 34px; }
.footer-grid h6 { color: #fff; font-weight: 800; }
.footer-grid a { display: block; color: #c8d5e6; margin: 9px 0; }
.footer-brand { margin-bottom: 16px; }

@media (max-width: 991px) {
  .hero-grid, .split-layout, .contact-grid { grid-template-columns: 1fr; }
  .hero-section { min-height: auto; padding: 90px 0; }
  .enterprise-visual { min-height: 330px; }
  .card-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .company-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-content { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 575px) {
  .card-grid, .stats-grid, .company-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: 40px; }
  .hero-copy p { font-size: 17px; }
  .cloud-node { position: relative; inset: auto !important; transform: none !important; margin: 12px 0; }
  .visual-line { display: none; }
}
.company-logo-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: block;
    margin: 0 auto 15px auto;
}

.company-card {
    text-align: center;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,.3);
    z-index: 9999;
}

    .whatsapp-float:hover {
        color: white;
        transform: scale(1.1);
    }

.feature-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.feature-card {
    text-align: center;
}